home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
NotAFileError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
252b
|
19 lines
// NotADirectoryError.h
#ifndef NotAFileError_h
#define NotAFileError_h
#ifndef FileError_h
#include "FileError.h"
#endif
class NotAFileError: public FileError
{
public:
NotAFileError( OSErr error )
: FileError( error )
{}
};
#endif